home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Clock / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.5 KB  |  55 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Menus.fr
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef DEFINES_K
  15. #include "Defines.k"
  16. #endif
  17.  
  18. #ifndef FWMENUS_FR
  19. #include "FWMenus.fr"
  20. #endif
  21.  
  22. //----------------------------------------------------------------------------
  23. //    Strings for clock face
  24. //----------------------------------------------------------------------------
  25. resource FW_kMULTISTRING (kClockFaceStrings)
  26. {
  27.     kClockDigitalWidthString, "12:59:59 MM";
  28.     kClockOpenDocString, "ODF";
  29. }
  30.  
  31. //----------------------------------------------------------------------------
  32. //    Menus
  33. //----------------------------------------------------------------------------
  34.  
  35. resource FW_RMenuBar(kMenuBar)
  36. {
  37.     "About ODFClock...",
  38.  
  39.     {
  40.         FW_RPullDownMenu
  41.         (
  42.             "Clock"
  43.             {
  44.                 FW_RToggleItem(cClockType, FW_kNoKeyEquivalent, "Display as Analog", "Display as Digital"),
  45.                 FW_RSeparatorItem(),
  46.                 FW_RTextItem(cClockSoundsTick, FW_kNoKeyEquivalent, "Tick"),
  47.                 FW_RTextItem(cClockSoundsChime, FW_kNoKeyEquivalent, "Chime"),
  48.                 FW_RSeparatorItem(),
  49.                 FW_RTextItem(cClockSettings, FW_kNoKeyEquivalent, "Clock Settings..."),
  50.                 FW_RTextItem(cClockUseContainerColor, FW_kNoKeyEquivalent, "Use Container's Color")
  51.             }
  52.         )
  53.     }
  54. };
  55.